home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / s / ep_voice2-toggle.rexx < prev    next >
OS/2 REXX Batch file  |  1993-10-20  |  197b  |  18 lines

  1. /* EaglePlayer - toggles Voice2 */
  2.  
  3. address 'rexx_EP'
  4.  
  5. options results
  6.  
  7. status G vo2
  8.  
  9. if result == "no" then do
  10.     voice2 yes
  11.     say "Voice 2 now on"
  12. end
  13. else do
  14.     voice2 no
  15.     say "Voice 2 now off"
  16. end
  17.  
  18.